Download Now (adsbygoogle = window.adsbygoogle || []).push({}); Your download will be ready in 5 seconds... Download Now let seconds = 20; const timerEl = document.getElementById("timer"); const button = document.getElementById("download"); const countdown = setInterval(() => { seconds--; timerEl.textContent = seconds; if (seconds === 0) { clearInterval(countdown); document.getElementById("message").style.display = "none"; button.style.display = "inline-block"; button.onclick = () => { window.location.href = "https://yourwebsite.com/yourfile.zip"; // your file link }; } }, 1000);